.testimonial-section {
    padding: 4rem 0;
    width: 100%;
}
.testimonial-card:hover{
    transition: 0.5s;
    /* background-color: #00C9FF; */
    border: 2px solid #00C9FF;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
}

.testimonial-card {
    color: #fff;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 1rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clint-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -60px auto 1rem;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.clint-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    color: #333;
    font-weight: bold;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 1rem;
}

.rating {
    color: #ffd000;
    font-size: 1.2rem;
    margin-top: auto;
}

.rating span {
    color: #ffd900;
    margin: 0 2px;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 2rem 0.5rem;
    }
}